home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / BORL_TIP / TI100 / TI244.ASC < prev    next >
Text File  |  1991-09-11  |  830b  |  67 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.   PRODUCT : TURBO GRAPHIX TOOLBOX                      NUMBER : 244
  10.   VERSION : 1.0xx
  11.        OS : PC-DOS
  12.      DATE : March 13, 1986                               PAGE : 1/1
  13.     TITLE : USING WHEREX AND WHEREY
  14.  
  15.  
  16.  
  17.  
  18.   The functions WhereX and WhereY do not return proper values from
  19.   a program using the Turbo Graphix Toolbox. The following
  20.   functions can be included in your programs to return the proper
  21.   values for WhereX and WhereY. In order for these functions to
  22.   return correct values it is necessary for your program to call
  23.   either GoToXY or InitGraphics before using them.
  24.  
  25.   function WhereX : integer;
  26.   begin
  27.     WhereX := XTextGlb;
  28.   end;
  29.  
  30.   function WhereY : integer;
  31.   begin
  32.     WhereY := YTextGlb;
  33.   end;
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.